home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / Audiomaster III v1.02.adf / HDInstall < prev    next >
Text File  |  1990-11-07  |  2KB  |  62 lines

  1. .k drive
  2. if <drive$dh0:> eq "dh0:"
  3.     ask "   Is dh0: the designation of your hard drive?  (Y/N)"
  4. if warn
  5.         echo "   Installing AudioMaster III on Drive dh0:"
  6.         echo "   "
  7.         execute AudioMasterIII:InstallHD dh0:
  8.         endcli
  9.         quit
  10. else
  11.         echo " "
  12.         echo "   ================================================================"
  13.         echo "                             ATTENTION"
  14.         echo "   This program will not run from the icon if your hard drive is "
  15.         echo "   not device dh0:.  You can run this installation program from the"
  16.         echo "   CLI by giving the commands"
  17.         echo "   "
  18.         echo "        CD AudioMasterIII:"
  19.         echo "        EXECUTE HDInstall drivename"
  20.         echo "   "
  21.         echo "   where drivename is the device name of your hard drive, "
  22.         echo "   followed by the colon, for example"
  23.         echo "   "
  24.         echo "        EXECUTE HDInstall BD0:"
  25.         echo "   "
  26.         echo "   Before installation, boot as you normally boot your hard drive "
  27.         echo "   to ensure that all files will be installed correctly."
  28.         echo "   ==============================================================="
  29.         echo " "
  30.         ask "   Press RETURN when ready to continue..."
  31.         endcli
  32.         quit
  33. endif
  34. endif
  35. if exists <drive>
  36.     ask "   Is <drive> the designation of your hard drive?  (Y/N)"
  37. if warn
  38.         execute AudioMasterIII:InstallHD <drive>
  39. else
  40.         echo " "
  41.         echo "   Please restart HDInstall from the CLI:"
  42.         echo ""
  43.         echo "        CD AudioMasterIII:"
  44.         echo "        EXECUTE HDInstall drivename"
  45.         echo "   "
  46.         echo "Be sure to end the drive designation with a colon."
  47.         echo "   "
  48.         ask "   Press RETURN when ready to continue..."
  49. endif
  50. else
  51.     echo " "
  52.     echo "   Could not find <drive>.  Please restart HDInstall "
  53.     echo "   from the CLI:"
  54.     echo ""
  55.     echo "        CD AudioMasterIII"
  56.     echo "        EXECUTE HDInstall drivename"
  57.     echo "   "
  58.     echo "Be sure to end the drive designation with a colon."
  59.     echo "   "
  60.     ask "   Press RETURN when ready to continue..."
  61. endif
  62.